home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 205_01 / capitals.doc < prev    next >
Text File  |  1980-01-01  |  768b  |  24 lines

  1. -------------------------------------------------------------------------------
  2.  CAPITALS
  3. -------------------------------------------------------------------------------
  4.  
  5. Format:
  6.  
  7.      capitals [< filename] 
  8.  
  9. Purpose:
  10.  
  11. CAPITALS is a text filter that capitalizes all letters in the standard input
  12. file before placing the result on standard output.
  13.  
  14. Examples:
  15.  
  16. Capitalize an entire text source file and print it on the printer.
  17.  
  18.      capitals <capitals.asm >prn 
  19.  
  20. Make a list of the current environmental settings, capitalize that list, and 
  21. append the list to the file named AUTOEXEC.BAT.
  22.  
  23.      set | capitals >> autoexec.bat
  24.